Python Tkinter Scale Widget

25

from tkinter import *
master = Tk()
w = Scale(master, from_=0, to=100, orient=HORIZONTAL)
w.pack()
w = Scale(master, from_=0, to=100)
w.pack()
mainloop()

Comments

Submit
0 Comments